Skip to main content

Activate Account by Tenant ID and Email

PUT /api/v1/users/{email}/tenants/{tenantId}/account/activate/public

Description​

Activate a user account by tenant ID and email.

Path Parameters​

NameTypeDescription
emailstringThe user's email (path)
tenantIdstringThe tenant ID (path)

Request Body​

  • Content Type: application/json
{
"comment": "string",
"password": "string"
}

Response Code: 200 - OK​

Description

Account activated successfully.

Method: PUT​

>http://your-api-url/api/v1/users/{email}/tenants/{tenantId}/account/activate/public

Headers​

Content-TypeValue
apiKey{{apiKey}}

Body​

{
"comment": "Activation comment",
"password": "userPassword"
}

🔑 Authentication bearer​

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PUT \ 
--url /api/v1/users/{email}/tenants/{tenantId}/account/activate/public \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!